@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
28 lines (25 loc) • 616 B
JavaScript
import Link from 'next/link'
export default function Page(props) {
return (
<div>
<p id="blog">This should not run the middleware</p>
<p id="props">{JSON.stringify(props)}</p>
<Link href="/another-middleware" id="to-another-middleware">
to /another-middleware
</Link>
<br />
<Link href="/blog/slug-2" id="to-blog-slug-2">
to /blog/slug-2
</Link>
<br />
</div>
)
}
export const getServerSideProps = ({ params }) => {
return {
props: {
params,
message: 'Hello, magnificent world.',
},
}
}